|
11
|
How do I put my logo on the right-bottom side of the control

OBJECT treecube;
treecube = ObjectByName("AN1") ;
_ObjectSetProperty( treecube , "Picture", _ObjectCallMethod( treecube , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
|
|
10
|
How do I bring/ensure a specified face to the front

OBJECT treecube;
treecube = ObjectByName("AN1") ;
_ObjectSetProperty( treecube , "IdentifyFace", 7);
_ObjectSetProperty( treecube , "VisibleFace", 4);
|
|
9
|
How do I bring/ensure a specified face to the front

OBJECT treecube;
treecube = ObjectByName("AN1") ;
_ObjectSetProperty( treecube , "IdentifyFace", 7);
_ObjectCallMethod( treecube , "EnsureVisibleFace", 4);
|
|
8
|
It sounds like the BackColor property does nothing

OBJECT treecube;
treecube = ObjectByName("AN1") ;
_ObjectSetProperty( treecube , "BackColor", 255);
_ObjectSetProperty( treecube , "Transparent", 50);
|
|
7
|
Is there any property to identify the faces I can fill in

OBJECT treecube;
treecube = ObjectByName("AN1") ;
_ObjectSetProperty( treecube , "IdentifyFace", 7);
|
|
6
|
How can I prevent scrolling the control inside a face once the user rolls the mouse wheel
OBJECT treecube;
treecube = ObjectByName("AN1") ;
_ObjectSetProperty( treecube , "OnMouseWheel", 0);
|
|
5
|
Can I navigate through the faces 0 to 3 only, even with the keyboard
OBJECT treecube;
treecube = ObjectByName("AN1") ;
_ObjectSetProperty( treecube , "EnsureVisibleFaces", "0,1,2,3");
_ObjectSetProperty( treecube , "AllowRotate", 3);
_ObjectSetProperty( treecube , "IdentifyFace", 7);
_ObjectSetProperty( treecube , "EnsureVisibleFaceOnDblClick", 0);
|
|
4
|
It sounds like the BackColor property does nothing

OBJECT treecube;
treecube = ObjectByName("AN1") ;
_ObjectSetProperty( treecube , "BackColor", 255);
_ObjectSetProperty( treecube , "ShowAs", 1);
_ObjectSetProperty( treecube , "AlwaysEnsureVisibleFace", 0);
_ObjectSetProperty( treecube , "RotX", 0.328184);
_ObjectSetProperty( treecube , "RotY", 0.967723);
|
|
3
|
Is it possible to let the control shows/rotates just the left/right side
OBJECT treecube;
treecube = ObjectByName("AN1") ;
_ObjectSetProperty( treecube , "AllowRotate", 3);
|
|
2
|
How can I disable changing the view if the user presses SPACE or digit keys
OBJECT treecube;
treecube = ObjectByName("AN1") ;
_ObjectSetProperty( treecube , "AllowEnsureVisibleFaceOnKey", 0);
|
|
1
|
I've noticed that I can not show the part of the control as I drag, once I release the mouse button

OBJECT treecube;
treecube = ObjectByName("AN1") ;
_ObjectSetProperty( treecube , "IdentifyFace", 7);
_ObjectSetProperty( treecube , "AlwaysEnsureVisibleFace", 0);
|